@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tiro+Bangla:ital@0;1&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    font-family: "Poppins", sans-serif;
    font-family: "Anek Bangla", sans-serif;
    background-color: #b00606;
}

.msg {
    font-size: 2em;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    max-width: 100%;
    align-items: center;
    background-color: #b00606;
}

.text1 {
    color: #115d33;
    text-shadow: 0.5px 0.5px #ffffff;
    font-size: 2em;
    font-weight: 800;
    padding-bottom: 0.5em;
    position: relative;
    /*   shorthand animation property: name | duration | iteration count */
    animation-name: text;
    animation-duration: 4s;
}

@keyframes text {
    0% {
        margin-left: -40em;
    }

    100% {
        margin-left: 0em;
    }
}

.drawer-list {
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    height: 100vh;
    width: 60%;
    transform: translate(100vw, 0);
    /* ie workaround */
    -ms-transform: translatex(-100vw);
    box-sizing: border-box;
    pointer-events: none;
    padding-top: 2.6em;
    transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
    border-bottom-left-radius: 100vw;
    background-color: #115d33;
}

.drawer-list ul {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    pointer-events: auto;
    margin-top: 0.3em;
}

.drawer-list li {
    list-style: none;
    text-transform: uppercase;
    pointer-events: auto;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translateX(100vw);
    /* ie workaround */
    -ms-transform: translateX(-100vw);
}

.drawer-list li:last-child {
    margin-bottom: 1em;
}

.drawer-list li a {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 1px 1px #000;
    text-align: right;
    display: block;
    padding: 0.25em;
    font-size: 0.9em;
    letter-spacing: 5px;
    transition: all 0.5s ease-in-out;
}

.drawer-list li a:hover {
    cursor: pointer;
    letter-spacing: 0;
    color: #000;
    background: #b00606;
    text-shadow: 1px 1px #ffffff;
}

.menu-tab {
    display: inline-block;
}

.menu-tab li {
    letter-spacing: 0;
    font-size: 0.8em;
    transition: all 5s ease-in-out;
}

.menu-tab li:hover a {
    transform: rotateX(360deg);
    background: transparent;
}

.menu-tab>:last-child {
    padding-top: 30px;
}

input.hamburger {
    display: none;
}

input.hamburger:checked~.drawer-list {
    transform: translateX(0);
    border-bottom-left-radius: 0;
}

input.hamburger:checked~.drawer-list li {
    transform: translateX(0);
}

input.hamburger:checked~.drawer-list li:nth-child(1) {
    transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(2) {
    transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(3) {
    transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(4) {
    transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(5) {
    transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(6) {
    transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(7) {
    transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(8) {
    transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li a {
    padding-right: 0.5em;
}

input.hamburger:checked~label>i {
    background-color: transparent;
    transform: rotate(90deg);
}

input.hamburger:checked~label>i:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

input.hamburger:checked~label>i:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

input.hamburger:checked~label close {
    color: #ffffff;
    width: 100%;

}

input.hamburger:checked~label open {
    color: #ffffff;
    width: 0;

}

label.hamburger {
    z-index: 99999;
    display: block;
    height: 50px;
    width: 50px;
    position: fixed;
    top: 0.5em;
    right: 2em;
}

label.hamburger:hover {
    cursor: pointer;
}

label.hamburger text close,
label.hamburger text open {
    text-transform: uppercase;
    font-size: 0.4em;
    text-align: center;
    position: absolute;
    transform: translateY(50px);
    text-align: center;
    overflow: hidden;
    transition: width 0.25s 0.35s, color 0.45s 0.35s;
}

label.hamburger text close {
    color: #ffffff;
    right: 0;
    width: 0;
}

label.hamburger text open {
    color: #ffffff;
    width: 100%;
}

label.hamburger>i {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    background-color: #ffffff;
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
}

label.hamburger>i:before,
label.hamburger>i:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    background-color: #ffffff;
    content: "";
    transition: transform 0.35s;
    transform-origin: 50% 50%;
}

label.hamburger>i:before {
    transform: translate(-50%, -14px);
}

label.hamburger>i:after {
    transform: translate(-50%, 14px);
}

.note {
    padding: 1em;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#para {
    position: relative;
    padding: 1.2em;
    text-align: justify;
    color: #ffffff;
    text-shadow: 2px 2px #000;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 5px 2px #000;
    border-radius: 0.5em;
    font-size: 0.7em;
}









@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

input,
button {
  outline: none;
}

a,
a:hover,
a:visited {
  color: #ddd;
  text-decoration: none;
}

.flex {
  display: -webkit-flex;
  display: flex;
}

.flex-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-align {
  -webkit-align-items: center;
  align-items: center;
}

.w-full {
  width: 100%;
}

#simp button,
#simp input,
#simp img {
  border: 0;
}

#simp {
  max-width: 90%;
  font-size: 1em;
  text-align: initial;
  line-height: initial;
  background: #115d33;
  color: #ffffff;
  margin: 0 auto;
  border-radius: 0.5em;
  overflow: hidden;
}

#simp .simp-album {
  padding: 20px 25px 5px;
}

#simp .simp-album .simp-cover {
  margin-right: 20px;
}


#simp .simp-album .simp-title {
  font-size: 120%;
  font-weight: bold;
}

#simp .simp-album .simp-artist {
  font-size: 90%;
  color: #fff;
}

#simp .simp-controls {
  padding: 15px;
}

#simp .simp-controls button {
  font-size: 130%;
  width: 32px;
  height: 32px;
  background: none;
  color: #ddd;
  padding: 7px;
  cursor: pointer;
  border: 0;
  border-radius: 3px;
}

#simp .simp-controls button[disabled] {
  color: #115d33;
  cursor: initial;
}

#simp .simp-controls button:not([disabled]):hover {
  background: #115d33;
  color: #fff;
}

#simp .simp-controls .simp-prev,
#simp .simp-controls .simp-next {
  font-size: 100%;
}

#simp .simp-controls .simp-tracker,
#simp .simp-controls .simp-volume {
  flex: 1;
  margin-left: 10px;
  position: relative;
}

#simp .simp-controls .simp-buffer {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 100px;
}

#simp .simp-controls .simp-loading .simp-buffer {
  -webkit-animation: audio-progress 1s linear infinite;
  animation: audio-progress 1s linear infinite;
  background-image: linear-gradient(
    -45deg,
    #115d33 25%,
    transparent 25%,
    transparent 50%,
    #115d33 50%,
    #115d33 75%,
    transparent 75%,
    transparent
  );
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

#simp .simp-controls .simp-time,
#simp .simp-controls .simp-others {
  margin-left: 10px;
}

#simp .simp-controls .simp-volume {
  max-width: 110px;
}

#simp .simp-controls .simp-volume .simp-mute {
  margin-right: 5px;
}

#simp .simp-controls .simp-others .simp-active {
  background: #115d33;
}

#simp .simp-controls .simp-others .simp-shide button {
  font-size: 100%;
  padding: 0;
  width: 24px;
  height: 14px;
  display: block;
}

#simp .simp-controls input[type="range"] {
  --webkit-appearance: none;
  background: transparent;
  height: 19px;
  margin: 0;
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

#simp .simp-controls input[type="range"]::-webkit-slider-runnable-track {
  background: rgba(17, 93, 51, 0.66);
  height: 5px;
  border-radius: 2.5px;
  transition: box-shadow 0.3s ease;
  position: relative;
}

#simp .simp-controls input[type="range"]::-moz-range-track {
  background: rgba(17, 93, 51, 0.66);
  height: 5px;
  border-radius: 2.5px;
  transition: box-shadow 0.3s ease;
  position: relative;
}

#simp .simp-controls .simp-load .simp-progress::-webkit-slider-runnable-track {
  background: #115d33;
}

#simp .simp-controls .simp-load .simp-progress::-moz-range-track {
  background: #115d33;
}

#simp
  .simp-controls
  .simp-loading
  .simp-progress::-webkit-slider-runnable-track {
  background: rgba(17, 93, 51, 0.25);
}

#simp .simp-controls .simp-loading .simp-progress::-moz-range-track {
  background: rgba(17, 93, 51, 0.25);
}

#simp .simp-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  height: 13px;
  width: 13px;
  margin-top: -4px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
}

#simp .simp-controls input[type="range"]::-moz-range-thumb {
  --webkit-appearance: none;
  background: #fff;
  height: 13px;
  width: 13px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
}

#simp .simp-footer {
  padding: 10px 10px 12px;
  font-size: 100%;
  text-align: center;
  opacity: 0.7;
}

#simp .simp-display {
  overflow: hidden;
  max-height: 550px;
  transition: max-height 0.5s ease-in-out;
}

#simp .simp-hide {
  max-height: 0;
}

/* playlist */

#simp ul {
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
  max-height: 245px;
}

#simp ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin: 0;
  font-size: 1rem;
  padding: 0.5rem 3em;
  cursor: pointer;
}

#simp ul li:nth-child(odd) {
  background: #000;
}

#simp ul li:hover {
  background: #ffa8a8;
  color: #000;
  font-weight: 600;
}

#simp ul li.simp-active {
  background: #b00606;
  color: #00ff73;
}

#simp ul li .simp-desc {
  font-size: 80%;
  opacity: 0.5;
  margin-left: 2em;
}

/* playlist scrollbar */

#simp ul {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #434343 #000000;
}

#simp ul::-webkit-scrollbar-track {
  background-color:  #21af61;
}

#simp ul::-webkit-scrollbar {
  width: 6px;
  background-color:  #21af61;
}

#simp ul::-webkit-scrollbar-thumb {
  background-color: #21af61;
}

/* progress animation */

@-webkit-keyframes audio-progress {
  to {
    background-position: 25px 0;
  }
}

@keyframes audio-progress {
  to {
    background-position: 25px 0;
  }
}

@media screen and (max-width: 480px) {
  #simp .simp-controls .simp-volume,
  #simp .simp-controls .simp-others {
    display: none;
  }
  #simp .simp-controls .simp-time {
    margin-right: 10px;
  }
}

@media screen and (max-width: 370px) {
  #simp .simp-time .simp-slash,
  #simp .simp-time .end-time {
    display: none;
  }
}




.heading-shift {
  margin: 0;
  padding: 10px 0;
  color: #f8ede0;
  font-size: 1em;
  text-align: center;
  background: #ff0000;
  border-bottom: 3px solid #00fbff;
  opacity: 1;
  user-select: none;
}

.heading-shift .highlight {
  color: #aaffff;
}

.container-shift {
  margin: 2em;
  padding: 2em;
  width: auto;
  height: 89%;
  text-align: center;
  background: #b00606;
  border-radius: 0.5em;
  border: 1px solid #ffffff;
  box-shadow: 1px 1px 5px 2px #000;
}













.footer {
    width: 100%;
    padding: 1.5em 2em;
    background-color: #115d33;
    color: #ffffff;
}

.contact_inner {
    border-radius: 0.5em;
    background-color: #b00606;
    box-shadow: 2px 2px 10px 5px #000000;
}

.row-line h3 {
    text-align: center;
    font-size: 2.5em;
    text-shadow: 2px 2px #000;
    text-transform: uppercase;
}

.row-line p {
    padding-top: 0.5em;
    text-align: center;
    font-size: 1.3em;
    text-shadow: 2px 2px #000;
    text-transform: uppercase;
}

.contact_form_inner {
    padding: 1em 0.5em;
    display: flex;
    justify-content: space-around;
}

.contact_field {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    width: 40%;
}

.contact_field input,
.contact_field textarea {
    background-color: #b00606;
    color: #fff;
}

.contact_field input::placeholder,
.contact_field textarea::placeholder {
    color: #ffffff;
    font-weight: 500;
}

.contact_field .form-control {
    margin-bottom: 2em;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #00ff73;
}

.contact_field .form-control::placeholder {
    font-size: 1em;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(90deg, #b00606, #115d33, #b00606);
    border: none;
    color: #ffffff;
    text-shadow: 1px 1px #000;
    padding: 0.5em 0;
    border-radius: 35px;
    cursor: pointer;
    font-size: 1em;
}

.contact_info_sec {
    color: #ffffff;
    text-shadow: 2px 2px #000;
    text-align: center;
    background: linear-gradient(90deg, #b00606, #115d33, #b00606);
    font-size: 1em;
    font-weight: 500;
    padding: 0.5em 5em;
    border-radius: 25px;
}

.contact_info_sec h4 {
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info_single {
    margin: 25px 0px;
}

.info_single i {
    margin-right: 10px;
}

.info_single span {
    font-size: 1em;
    letter-spacing: 1px;
}

.social_item_inner {
    background-color: #115d33;
    height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social_item_inner li {
    list-style: none;
    transition: all 0.5s ease-in-out;
}

.social_item_inner li a i {
    font-size: 1.5em;
    color: #ffffff;

}

.social_item_inner li:hover {
    transform: rotateY(360deg)
}

.last {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
    margin-bottom: -1em;
}

.last>span {
    padding: 0.5em 2em;
    border-radius: 0.2em;
    box-shadow: inset 0.5px 0.5px 2px 0.5px #ffffff;
    text-align: center;
    color: #ffffff;
}

.last span a {
    text-decoration: none;
    color: #ffffff;
}


/* Responsive Codes--------------------------------- */

@media only screen and (min-width:200px) and (max-width:310px) {

  .msg {
  font-size: 1.5em;
  height: fit-content;
}

.text1 {
  font-size: 1.5em;
  margin-top: 0.5em;
  text-shadow: 0.5px 0.5px #fff;
}

label.hamburger {
  top: 1em;
  right: 1em;
  height: 10px;
  width: 28px;
}

label.hamburger>i:before {
  transform: translate(-50%, -8px);
}

label.hamburger>i:after {
  transform: translate(-50%, 8px);
}

label.hamburger text close,
label.hamburger text open {
  font-size: 0.4em;
  transform: translateY(20px);
}

.drawer-list {
  width: 100%;
  padding-top: 3em;
}

.drawer-list li a {
  text-align: end;
  font-size: 1.15em;
}

.social_item_inner li {
  margin-left: 0.3em;
}

.menu-tab>:last-child {
  padding-top: 20px;
}

.note {
  width: 100%;
  padding: 0.5em;
}

.note p {
  font-size: 0.5em;
}





.container-shift {
  margin: 1em;
  padding: 1em;
}

#simp {
  max-width: 100%;
  max-height: 100%;
  font-size: 0.8em;
}

#simp ul li {
  font-size: 0.8rem;
  padding: 0.5rem 1em;

}












.footer {
  padding: 0;
}

.row-line {
  height: fit-content;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.row-line p {
  font-size: 1em;
}

.row-line h3 {
  font-size: 1.5em;
}

.contact_form_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5em;
}

.contact_field {
  padding: 0.5em;
  width: 100%;
}

.contact_field input,
.contact_field textarea,
.contact_field button {
  width: 100%;
  margin: 0 auto
}

.contact_info_sec {
  position: relative;
}

.info_single span {
  font-size: 0.8em;
}

.info_single i {
  font-size: 0.8em;
  margin-right: 1em;
}

.last {
  display: flex;
  flex-direction: column;
}

.last span,
.last span a {
  text-transform: uppercase;
  font-size: 0.5em;
  box-shadow: none;
}
}

@media only screen and (min-width:311px) and (max-width:426px) {
.msg {
  font-size: 1.5em;
  height: fit-content;
}

.text1 {
  font-size: 1.5em;
}

label.hamburger {
  top: 1em;
  right: 1em;
  height: 10px;
  width: 30px;
}

label.hamburger>i:before {
  transform: translate(-50%, -10px);
}

label.hamburger>i:after {
  transform: translate(-50%, 10px);
}

label.hamburger text close,
label.hamburger text open {
  font-size: 0.4em;
  transform: translateY(20px);
}

.drawer-list {
  width: 100%;
  padding-top: 3em;
}

.drawer-list li a {
  text-align: end;
  font-size: 1.15em;
}

.social_item_inner li {
  margin-left: 0.5em;
}

.menu-tab>:last-child {
  padding-top: 20px;
}

.note {
  width: 100%;
  padding: 0.5em;
}

.note p {
  font-size: 0.5em;
}






.container-shift {
  margin: 1em;
  padding: 1em;
  height: 80%;
}

#simp {
  max-width: 100%;
  max-height: 150%;
  font-size: 0.8em;
}

#simp ul li {
  font-size: 0.8rem;
  padding: 0.5rem 1em;
}






 
.footer {
  padding: 0;
}

.row-line {
  height: fit-content;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.row-line p {
  font-size: 1em;
}

.row-line h3 {
  font-size: 1.5em;
}

.contact_form_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5em;
}

.contact_field {
  padding: 0.5em;
  width: 100%;
}

.contact_field input,
.contact_field textarea,
.contact_field button {
  width: 100%;
  margin: 0 auto
}

.contact_info_sec {
  position: relative;
}

.info_single span {
  font-size: 0.8em;
}

.info_single i {
  font-size: 0.8em;
  margin-right: 1em;
}

.last {
  display: flex;
  flex-direction: column;
}

.last span,
.last span a {
  text-transform: uppercase;
  font-size: 0.5em;
  box-shadow: none;
}
}

@media only screen and (min-width: 426px) and (max-width:597px) {
.msg {
  font-size: 1.5em;
  height: fit-content;
}

label.hamburger {
  top: 1.5em;
  right: 1.5em;
  height: 10px;
  width: 45px;
}

label.hamburger text close,
label.hamburger text open {
  font-size: 0.5em;
  transform: translateY(30px);
}

.drawer-list {
  width: 100%;
  height: 100vh;
}

.drawer-list ul {
  margin-top: 1.5em;
}

.drawer-list li a {
  font-size: 1em;

}

.menu-tab>:last-child {
  padding-top: 25px;
}

.note {
  width: 100%;
}

.note p {
  font-size: 0.7em;
}

  




.container-shift {
  margin: 1.5em;
  padding: 1em;
  height: 80%;
}

#simp {
  max-width: 100%;
  max-height: 150%;
  font-size: 0.8em;
}

#simp ul li {
  font-size: 0.9rem;
  padding: 0.5rem 1em;
}







.footer {
  padding: 0;
}

.row-line {
  height: fit-content;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.row-line p {
  font-size: 1em;
}

.row-line h3 {
  font-size: 1.5em;
}

.contact_form_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5em;
}

.contact_field {
  padding: 0.5em 3em;
  width: 100%;
}

.contact_field input,
.contact_field textarea,
.contact_field button {
  width: 100%;
  margin: 0 auto
}

.contact_info_sec {
  position: relative;
}

.info_single span {
  font-size: 0.8em;
}

.info_single i {
  font-size: 0.8em;
  margin-right: 1em;
}

.last {
  display: flex;
  flex-direction: column;
}

.last span,
.last span a {
  text-transform: uppercase;
  font-size: 0.5rem;
  box-shadow: none;
}
}

@media only screen and (min-width: 598px) and (max-width:768px) {
.msg {
  font-size: 1.5em;
  height: fit-content;
}

label.hamburger {
  top: 1.5em;
  right: 1.5em;
  height: 10px;
  width: 45px;
}

label.hamburger text close,
label.hamburger text open {
  font-size: 0.5em;
  transform: translateY(30px);
}

.drawer-list {
  width: 100%;
  height: 100vh;
}

.drawer-list ul {
  margin-top: 1.5em;
}

.drawer-list li a {
  font-size: 1em;

}

.menu-tab>:last-child {
  padding-top: 25px;
}

.note {
  width: 100%;
}

.note p {
  font-size: 0.7em;
}







.container-shift {
  margin: 1.5em;
  padding: 1em;
  height: 80%;
}

#simp {
  max-width: 90%;
  max-height: 150%;
  font-size: 0.8em;
}

#simp ul li {
  font-size: 0.9rem;
  padding: 0.5rem 2em;
}







.footer {
  padding: 0;
}

.row-line {
  height: fit-content;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.row-line p {
  font-size: 1em;
}

.row-line h3 {
  font-size: 1.5em;
}

.contact_form_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5em;
}

.contact_field {
  padding: 0.5em 3em;
  width: 100%;
}

.contact_field input,
.contact_field textarea,
.contact_field button {
  width: 100%;
  margin: 0 auto
}

.contact_info_sec {
  position: relative;
}

.info_single span {
  font-size: 0.8em;
}

.info_single i {
  font-size: 0.8em;
  margin-right: 1em;
}

.last {
  display: flex;
  flex-direction: column;
}

.last span,
.last span a {
  text-transform: uppercase;
  font-size: 0.5rem;
  box-shadow: none;
}
}


@media only screen and (min-width: 769px) and (max-width:1025px) {
.msg {
  font-size: 1.5em;
  height: fit-content;
}


label.hamburger {
  top: 1em;
  right: 1.5em;
  height: 10px;
  width: 45px;
}

label.hamburger text close,
label.hamburger text open {
  font-size: 0.5em;
  transform: translateY(30px);
}

.drawer-list {
  width: 60%;
  height: 100vh;
}

.drawer-list ul {
  margin-top: 1.5em;
}

.drawer-list li a {
  font-size: 1.2em;
}

.container-animation {
  width: 100%;
}

.text1 {
  text-align: center;
}

.note {
  width: 100%;
  padding: 0 0.5em;
  margin-top: 1em;
}
.note p {
  font-size: 1em;
}






.container-shift {
  margin: 1.5em;
  height: auto !important;
  padding: 1em;
}

#simp {
  max-width: 90%;
  height: 150%;
  font-size: 0.8em;
}

#simp .simp-display {
  overflow: hidden;
  max-height: 650px;
  transition: max-height 0.5s ease-in-out;
}

#simp ul li {
  font-size: 0.9rem;
  padding: 0.5rem 2em;
}






    
.row-line {
  padding: 0 1em;
  justify-content: space-between;
}

.row-line p {
  font-size: 1em;
}

.row-line h3 {
  font-size: 1.5em;
}

.contact_info_sec {
  width: 20em;
  padding: 0.2em;
}

.contact_info_sec h4 {
  font-size: 1em;
}

.info_single span {
  font-size: 0.7em;
}

.last span {
  font-size: 0.7em;
}
}
@media only screen and (min-width: 1026px) and (max-width:1440px) {

  #simp ul {
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
    max-height: 315px;
  }

}
@media only screen and (min-width: 1441px) and (max-width:2561px) {
.msg {
  height: fit-content;
}

.container-animation span {
  font-size: 4em;
}

.front-face p {
  font-size: 1.5em;
}

label.hamburger {
  margin-top: 2em;
  right: 2em;
  height: 1em;
  width: 3em;
}

label.hamburger>i,
label.hamburger>i:before,
label.hamburger>i:after {
  height: 5px;
}

label.hamburger>i:before {
  transform: translate(-50%, -25px);
}

label.hamburger>i:after {
  transform: translate(-50%, 25px);
}

label.hamburger text close,
label.hamburger text open {
  transform: translateY(60px);
  font-size: 1em;
}

.drawer-list {
  width: 60%;
  height: 100vh;
}

.drawer-list ul {
  margin-top: 4em;
}

.drawer-list li a {
  font-size: 2em;
}

.menu-tab li a {
  font-size: 1.5em;
}

.note {
  padding: 1em;
  font-size: 2em;
}

.note p {
  font-size: 0.7em;
}
  



@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

input,
button {
  outline: none;
}

a,
a:hover,
a:visited {
  color: #ddd;
  text-decoration: none;
}

.flex {
  display: -webkit-flex;
  display: flex;
}

.flex-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-align {
  -webkit-align-items: center;
  align-items: center;
}

.w-full {
  width: 100%;
}

#simp button,
#simp input,
#simp img {
  border: 0;
}

#simp {
  max-width: 100%;
  font-size: 3em;
  text-align: initial;
  line-height: initial;
  background: #115d33;
  color: #ffffff;
  margin: 0 auto;
  border-radius: 0.5em;
  overflow: hidden;
}

#simp .simp-album {
  padding: 20px 25px 5px;
}

#simp .simp-album .simp-cover {
  margin-right: 20px;
}


#simp .simp-album .simp-title {
  font-size: 120%;
  font-weight: bold;
}

#simp .simp-album .simp-artist {
  font-size: 90%;
  color: #fff;
}

#simp .simp-controls {
  padding: 15px;
  height: 2em;
}

#simp .simp-controls button {
  font-size: 90%;
  width: 32px;
  height: 32px;
  margin-left: 1.5em;
  background: none;
  color: #ddd;
  padding: 7px;
  cursor: pointer;
  border: 0;
  border-radius: 3px;
}

#simp .simp-controls button[disabled] {
  color: #115d33;
  cursor: initial;
}

#simp .simp-controls button:not([disabled]):hover {
  background: #115d33;
  color: #fff;
}

#simp .simp-controls .simp-prev,
#simp .simp-controls .simp-next {
  font-size: 100%;
  margin-left: 1em;
}

#simp .simp-controls .simp-tracker,
#simp .simp-controls .simp-volume {
  flex: 1;
  margin-left: 1em;
  margin-top: 0.35em;
  position: relative;
  font-size: 2em;
}

#simp .simp-controls .simp-buffer {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 55px;
  margin-top: -2.5px;
  border-radius: 100px;
}

#simp .simp-controls .simp-loading .simp-buffer {
  -webkit-animation: audio-progress 1s linear infinite;
  animation: audio-progress 1s linear infinite;
  background-image: linear-gradient(
    -45deg,
    #115d33 25%,
    transparent 25%,
    transparent 50%,
    #115d33 50%,
    #115d33 75%,
    transparent 75%,
    transparent
  );
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

#simp .simp-controls .simp-time,
#simp .simp-controls .simp-others {
  margin-left: 2em;
  font-size: 1em;
}

#simp .simp-controls .simp-volume {
  max-width: 10px;
}

#simp .simp-controls .simp-volume .simp-mute {
  margin-left: -1em;
  position: absolute;
  margin-bottom: 1em;
  font-size: 50%;
}

#simp .simp-controls .simp-others .simp-active {
  background: #115d33;
}

#simp .simp-controls .simp-others .simp-shide button {
  font-size: 90%;
  padding: 0;
  width: 24px;
  height: 24px;
  display: block;
}

#simp .simp-controls input[type="range"] {
  --webkit-appearance: none;
  background: transparent;
  height: 19px;
  margin: 0;
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

#simp .simp-controls input[type="range"]::-webkit-slider-runnable-track {
  background: rgba(17, 93, 51, 0.66);
  height: 15px;
  width: 100%;
  border-radius: 2.5px;
  transition: box-shadow 0.3s ease;
  position: relative;
}

#simp .simp-controls input[type="range"]::-moz-range-track {
  background: rgba(17, 93, 51, 0.66);
  height: 15px;
  width: 100%;
  border-radius: 2.5px;
  transition: box-shadow 0.3s ease;
  position: relative;
}

#simp .simp-controls .simp-load .simp-progress::-webkit-slider-runnable-track {
  background: #115d33;
}

#simp .simp-controls .simp-load .simp-progress::-moz-range-track {
  background: #115d33;
}

#simp
  .simp-controls
  .simp-loading
  .simp-progress::-webkit-slider-runnable-track {
  background: rgba(17, 93, 51, 0.25);
}

#simp .simp-controls .simp-loading .simp-progress::-moz-range-track {
  background: rgba(17, 93, 51, 0.25);
}

#simp .simp-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  height: 13px;
  width: 30px;
  margin-top: 4px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
}

#simp .simp-controls input[type="range"]::-moz-range-thumb {
  --webkit-appearance: none;
  background: #fff;
  height: 13px;
  width: 13px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
}

#simp .simp-footer {
  padding: 10px 10px 12px;
  font-size: 90%;
  text-align: center;
  opacity: 0.7;
}

#simp .simp-display {
  overflow: hidden;
  max-height: 650px;
  transition: max-height 0.5s ease-in-out;
}

#simp .simp-hide {
  max-height: 0;
}

/* playlist */

#simp ul {
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
  max-height: 545px;
}

#simp ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin: 0;
  font-size: 3rem;
  padding: 1rem 2em;
  cursor: pointer;
}

#simp ul li:nth-child(odd) {
  background: #000;
}

#simp ul li:hover {
  background: #ffa8a8;
  color: #000;
  font-weight: 600;
}

#simp ul li.simp-active {
  background: #b00606;
  color: #00ff73;
}

#simp ul li .simp-desc {
  font-size: 80%;
  opacity: 0.5;
  margin-left: 2em;
}

/* playlist scrollbar */

#simp ul {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #434343 #000000;
}

#simp ul::-webkit-scrollbar-track {
  background-color:  #21af61;
}

#simp ul::-webkit-scrollbar {
  width: 6px;
  background-color:  #21af61;
}

#simp ul::-webkit-scrollbar-thumb {
  background-color: #21af61;
}

/* progress animation */

@-webkit-keyframes audio-progress {
  to {
    background-position: 25px 0;
  }
}

@keyframes audio-progress {
  to {
    background-position: 25px 0;
  }
}

@media screen and (max-width: 480px) {
  #simp .simp-controls .simp-volume,
  #simp .simp-controls .simp-others {
    display: none;
  }
  #simp .simp-controls .simp-time {
    margin-right: 10px;
  }
}

@media screen and (max-width: 370px) {
  #simp .simp-time .simp-slash,
  #simp .simp-time .end-time {
    display: none;
  }
}




.heading-shift {
  margin: 0;
  padding: 10px 0;
  color: #f8ede0;
  font-size: 4em;
  text-align: center;
  background: #ff0000;
  border-bottom: 3px solid #00fbff;
  opacity: 1;
  user-select: none;
}

.heading-shift .highlight {
  color: #aaffff;
}

.container-shift {
  margin: 4em;
  padding: 4em;
  width: auto;
  height: 76%;
  text-align: center;
  background: #b00606;
  border-radius: 0.5em;
  border: 1px solid #ffffff;
  box-shadow: 1px 1px 5px 2px #000;
}









.row-line h3 {
  font-size: 5em;
}

.row-line p {
  font-size: 3em;
}

.contact_form_inner {
  padding: 1em 0.5em;
}

.contact_field input,
.contact_field textarea {
  margin-top: 2em;
}

.contact_field textarea {
  padding-bottom: 1.5em;
  border-bottom: 3px solid #ccc;
}

.contact_field button {
  margin-top: 1em;
}

.contact_field .form-control {
  padding-top: 3em;
  border-bottom: 3px solid #ccc;
}

.contact_field:focus .form-control:focus {
  padding-bottom: 2em;
  border-bottom: 2px solid #00ff73;
}

.contact_field .form-control::placeholder {
  font-size: 3em;
}

button.contact_form_submit {
  font-size: 2em;
}

.contact_info_sec {
  width: 40%;
  height: auto;
  font-size: 2em;
  padding: 1.5em 1em;
}

.contact_info_sec h4 {
  font-size: 2em;
}

.social_item_inner {
  height: 3.5em;
}

.social_item_inner li a i {
  font-size: 2.5em;
}

.last>span {
  font-size: 1.5em;
}

.last span a {
  text-decoration: none;
  color: #e5ff00;
}
}